4f3d81f0ccdecc7528114f7470a0c2749a908982,src/net/java/sip/communicator/impl/replacement/hulu/ReplacementServiceHuluImpl.java,ReplacementServiceHuluImpl,getReplacement,#String#,63

Before Change


                holder = inputLine;
            in.close();

            JSONObject wrapper = new JSONObject(holder);

            String thumbUrl = wrapper.getString("thumbnail_url");

            if (thumbUrl != null)
            {

After Change


                holder = inputLine;
            in.close();

            JSONObject wrapper = (JSONObject)JSONValue
                .parseWithException(holder);

            String thumbUrl = (String)wrapper.get("thumbnail_url");

            if (thumbUrl != null)
            {